/*
Theme Name: 子比美妆子主题
Theme URI: https://www.cw.com
Description: 基于子比主题的美妆行业定制子主题
Author: Your Name
Author URI: https://www.cw.com
Template: zibll
Version: 1.0.0
Requires at least: 5.0
Requires PHP: 7.0
*/

/* 在这里添加自定义样式 */

/* 美妆主题配色 */
:root {
    --beauty-primary: #ff6b9d;
    --beauty-secondary: #ffa8c5;
    --beauty-accent: #ff8fab;
}

/* 自定义样式将在这里添加 */

/* ========================================
   Font Awesome 图标样式
   ======================================== */
.fas,
.far,
.fal,
.fab {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   美妆首页布局样式
   ======================================== */

.beauty-home-container {
    padding: 20px 0;
    background: #f5f7fa;
    min-height: 100vh;
    position: relative;
}

.beauty-home-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 1px;
    background: #e0e0e0;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

/* 左侧分类导航 */
.beauty-sidebar {
    padding-right: 15px;
    /* 确保粘性定位能够正常工作 */
    overflow: visible;
}

.beauty-categories {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}

.beauty-categories .category-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--beauty-primary);
}

.beauty-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.beauty-category-list .category-item {
    margin-bottom: 5px;
}

.beauty-category-list .category-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.beauty-category-list .category-item a:hover {
    background: linear-gradient(90deg, var(--beauty-secondary) 0%, var(--beauty-accent) 100%);
    color: #fff;
    padding-left: 20px;
    transform: translateX(3px);
}

.beauty-category-list .category-item a i {
    margin-right: 8px;
}

.beauty-category-list .category-item a .count {
    font-size: 12px;
    opacity: 0.7;
}

/* 最新文章 */
.beauty-latest-posts-widget {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-top: 20px;
    max-height: calc(100vh - 40px); /* 最大高度为视口高度减去上下间距 */
    overflow-y: auto; /* 内容过多时可滚动 */
}



.beauty-latest-posts-widget h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.beauty-latest-posts-widget h4 i {
    color: var(--beauty-primary);
}

.latest-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.latest-post-item {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.latest-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.latest-post-item a {
    display: flex;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.latest-post-item:hover {
    background: #f8f9fa;
    margin: 0 -10px 12px -10px;
    padding: 10px;
    border-radius: 6px;
}

.latest-post-item:last-child:hover {
    margin-bottom: 0;
}

.post-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.post-info h5 {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0 0 6px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.latest-post-item:hover .post-info h5 {
    color: var(--beauty-primary);
}

.post-date {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 4px;
}

.post-date i {
    font-size: 11px;
}

/* 广告位/推广位 */
.beauty-ad-widget {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-top: 20px;
    margin-bottom: 20px;
}

.beauty-ad-widget h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.beauty-ad-widget h4 i {
    color: #FFD700;
}

.ad-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ad-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.ad-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.ad-item a {
    display: block;
    position: relative;
}

.ad-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.ad-item:hover img {
    transform: scale(1.05);
}

.ad-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,107,157,0.9);
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    backdrop-filter: blur(5px);
}

/* 文字广告样式 */
.ad-text-item {
    background: #fff;
    border: 1px solid #f0f0f0;
}

.ad-text-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    text-decoration: none;
}

.ad-text-item:hover {
    border-color: var(--beauty-primary);
    background: #fff5f8;
}

.ad-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--beauty-primary) 0%, var(--beauty-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-icon i {
    font-size: 20px;
    color: #fff;
}

.ad-text-content {
    flex: 1;
    min-width: 0;
}

.ad-text-content h5 {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ad-text-content p {
    font-size: 12px;
    color: #999;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ad-arrow {
    flex-shrink: 0;
    color: #ccc;
    font-size: 18px;
    transition: all 0.3s ease;
}

.ad-text-item:hover .ad-arrow {
    color: var(--beauty-primary);
    transform: translateX(3px);
}

/* 热门标签组件 */
.beauty-tags-widget {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-top: 20px;
    margin-bottom: 20px;
}

.beauty-tags-widget h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.beauty-tags-widget h4 i {
    color: var(--beauty-primary);
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    display: inline-block;
    padding: 6px 15px;
    background: #f8f9fa;
    color: #666;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.tag-item:hover {
    background: var(--beauty-primary);
    color: #fff;
    border-color: var(--beauty-primary);
    transform: translateY(-2px);
}

/* 美妆小贴士组件 */
.beauty-tips-widget {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}

.beauty-tips-widget h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.beauty-tips-widget h4 i {
    color: #FFD700;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
    color: #666;
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list li i {
    color: var(--beauty-primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.tips-list li span {
    flex: 1;
    line-height: 1.5;
}

/* 每日推荐组件 */
.beauty-daily-widget {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}

.beauty-daily-widget h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.beauty-daily-widget h4 i {
    color: var(--beauty-primary);
}

.daily-content h5 {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.daily-content p {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 15px;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 20px;
    background: var(--beauty-primary);
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-more:hover {
    background: var(--beauty-accent);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(255,107,157,0.3);
}

.btn-view-more i {
    transition: transform 0.3s ease;
}

.btn-view-more:hover i {
    transform: translateX(3px);
}

/* 中间主内容区 */
.beauty-main-content {
    padding: 0 15px;
    width: 100%;
}

/* 主Banner区域 - 左右布局容器 */
.beauty-hero-wrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

/* 左侧：主Banner轮播 */
.beauty-hero-slider {
    flex: 1;
    background: linear-gradient(135deg, var(--beauty-primary) 0%, var(--beauty-accent) 100%);
    border-radius: 12px;
    padding: 60px 40px;
    color: #fff;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255,107,157,0.3);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beauty-hero-slider::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.beauty-hero-slider::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.slider-item {
    position: relative;
    z-index: 1;
}

.beauty-hero-slider h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.beauty-hero-slider p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.beauty-hero-slider .btn-primary {
    background: #fff;
    color: var(--beauty-primary);
    padding: 12px 40px;
    border-radius: 25px;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.beauty-hero-slider .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* 快捷入口 */
.beauty-quick-links {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.quick-link-item {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.quick-link-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255,107,157,0.2);
    color: var(--beauty-primary);
}

.quick-link-item i {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
    color: var(--beauty-primary);
}

.quick-link-item span {
    font-size: 14px;
    font-weight: 500;
}

.corner-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--beauty-primary);
    color: #fff;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 0 12px 0 12px;
    box-shadow: 0 2px 8px rgba(255,107,157,0.3);
}

/* 精选美妆产品区域 */
.featured-products-section {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 25px;
}

/* 产品分类标签 */
.products-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    flex-wrap: wrap;
}

.product-tab-btn {
    padding: 8px 20px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    color: #666;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-tab-btn:hover {
    background: #f0f0f0;
    border-color: var(--beauty-primary);
    color: var(--beauty-primary);
}

.product-tab-btn.active {
    background: var(--beauty-primary);
    border-color: var(--beauty-primary);
    color: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.product-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    background: #fff;
    border-color: var(--beauty-primary);
    box-shadow: 0 5px 20px rgba(255,107,157,0.15);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    background: #f8f9fa;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--beauty-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(255,107,157,0.3);
}

.product-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h5 {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-info h5 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card:hover .product-info h5 a {
    color: var(--beauty-primary);
}

.product-desc {
    font-size: 13px;
    color: #999;
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #999;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
    margin-top: auto;
}

.product-price,
.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.product-price i,
.product-rating i {
    color: var(--beauty-primary);
}

.product-card:hover .product-price,
.product-card:hover .product-rating {
    color: var(--beauty-primary);
}

/* 认证企业区域 */
.certified-merchants-section {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 25px;
}

.merchants-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.merchant-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.merchant-card:hover {
    background: #fff;
    border-color: var(--beauty-primary);
    box-shadow: 0 5px 20px rgba(255,107,157,0.15);
    transform: translateY(-5px);
}

.merchant-link {
    display: block;
    padding: 20px;
    text-decoration: none;
    color: inherit;
}

.merchant-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
}

.merchant-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--beauty-primary);
    object-fit: cover;
}

.verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.verified-badge i {
    color: var(--beauty-primary);
    font-size: 18px;
}

.merchant-info {
    text-align: center;
}

.merchant-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0 0 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.merchant-card:hover .merchant-name {
    color: var(--beauty-primary);
}

.merchant-desc {
    font-size: 13px;
    color: #999;
    margin: 0 0 12px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.merchant-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
}

.merchant-stats .stat-item {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.merchant-stats .stat-item i {
    color: var(--beauty-primary);
}

/* 热门推荐区域 */
.beauty-featured-section {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    /* margin-bottom: 25px; */
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f7f3f3;
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 0;
    position: relative;
    padding-left: 15px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--beauty-primary);
    border-radius: 2px;
}

.more-link {
    color: #999;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.more-link:hover {
    color: var(--beauty-primary);
}

.beauty-grid {
    margin: 0 -10px;
}

.beauty-grid > [class*="col-"] {
    padding: 0 10px;
}

/* 美妆卡片 */
.beauty-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.beauty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: var(--beauty-primary);
}

.beauty-card .card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    flex-shrink: 0;
}

.beauty-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.beauty-card:hover .beauty-card-img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--beauty-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.beauty-card-body {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.beauty-card-body h4 {
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.4;
    height: 42px;
    overflow: hidden;
}

.beauty-card-body h4 a {
    color: #333;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.beauty-card-body h4 a:hover {
    color: var(--beauty-primary);
}

.beauty-card-body .card-excerpt {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
    line-height: 1.5;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 39px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-item i {
    color: var(--beauty-primary);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .merchants-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Hero区域响应式 */
    .beauty-hero-wrapper {
        flex-direction: column;
    }
    
    .beauty-user-card {
        width: 100%;
    }
    
    /* 用户展示区域响应式 */
    .users-list {
        gap: 20px;
        overflow-x: auto;
        padding-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .beauty-main-content {
        margin-bottom: 20px;
        padding: 0 15px;
    }
    
    .beauty-hero-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .beauty-hero-slider {
        padding: 40px 20px;
        min-height: 300px;
    }
    
    .beauty-user-card {
        width: 100%;
        padding: 30px 20px;
    }
    
    .beauty-users-showcase {
        padding: 20px;
    }
    
    .users-tabs .tab-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .users-list {
        gap: 15px;
    }
    
    .user-avatar-circle {
        width: 60px;
        height: 60px;
    }
    
    .user-nickname {
        font-size: 12px;
        max-width: 60px;
    }
    
    .merchants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .merchants-grid {
        grid-template-columns: 1fr;
    }
    
    .beauty-hero-slider {
        padding: 40px 20px;
    }
    
    .beauty-hero-slider h2 {
        font-size: 28px;
    }
    
    .beauty-hero-slider p {
        font-size: 16px;
    }
    
    .beauty-hero-slider .btn-secondary {
        display: block;
        margin: 10px 0 0 0;
    }
    
    .beauty-quick-links {
        flex-wrap: wrap;
    }
    
    .quick-link-item {
        flex: 0 0 calc(50% - 8px);
    }
    
    .platform-stats {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .merchants-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .beauty-hero-slider {
        padding: 30px 15px;
    }
    
    .beauty-hero-slider h2 {
        font-size: 24px;
    }
    
    .quick-link-item {
        flex: 0 0 100%;
    }
    
    .beauty-grid > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ========================================
   企业入驻相关样式
   ======================================== */

/* Banner按钮组 */
.beauty-hero-slider .btn-secondary {
    background: transparent;
    color: #fff;
    padding: 12px 40px;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid #fff;
    display: inline-block;
    text-decoration: none;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.beauty-hero-slider .btn-secondary:hover {
    background: #fff;
    color: var(--beauty-primary);
    transform: translateY(-3px);
}

.beauty-hero-slider .btn-secondary:hover {
    background: #fff;
    color: var(--beauty-primary);
    transform: translateY(-3px);
}

/* 右侧：用户信息卡片 */
.beauty-user-card {
    flex-shrink: 0;
    width: 350px;
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-card-content {
    width: 100%;
    text-align: center;
}

.beauty-user-card .user-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--beauty-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.beauty-user-card .user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beauty-user-card .user-avatar i {
    font-size: 60px;
    color: var(--beauty-primary);
}

.beauty-user-card .user-name {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
}

.beauty-user-card .user-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.beauty-user-card .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.beauty-user-card .stat-value {
    font-size: 24px;
    font-weight: bold;
    color: var(--beauty-primary);
    line-height: 1;
}

.beauty-user-card .stat-label {
    font-size: 13px;
    color: #999;
}

.beauty-user-card .btn-logout {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--beauty-primary);
    color: #fff;
    border-radius: 25px;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.beauty-user-card .btn-logout:hover {
    background: var(--beauty-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,157,0.3);
}

.beauty-user-card .btn-logout:hover {
    background: var(--beauty-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,157,0.3);
}

/* 用户展示区域 */
.beauty-users-showcase {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: relative;
}

.users-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 25px;
    border-bottom: none;
}

.users-tabs .tab-btn {
    padding: 12px 30px;
    background: #f8f9fa;
    border: none;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.users-tabs .tab-btn:hover {
    background: #e9ecef;
}

.users-tabs .tab-btn.active {
    background: var(--beauty-primary);
    color: #fff;
    font-weight: bold;
}

.users-tabs .tab-btn:first-child {
    border-radius: 8px 0 0 0;
}

.users-tabs .tab-btn:last-child {
    border-radius: 0 8px 0 0;
}

.users-content {
    position: relative;
}

.users-list {
    display: none;
    gap: 30px;
    align-items: center;
}

.users-list.active {
    display: flex;
}

.user-item {
    flex: 0 0 auto;
}

.user-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.user-link:hover {
    transform: translateY(-5px);
}

.user-avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--beauty-primary);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.user-link:hover .user-avatar-circle {
    border-color: var(--beauty-accent);
    box-shadow: 0 5px 15px rgba(255,107,157,0.3);
}

.user-avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-nickname {
    font-size: 14px;
    color: #666;
    text-align: center;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-link:hover .user-nickname {
    color: var(--beauty-primary);
}

.corner-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--beauty-primary);
    color: #fff;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 0 12px 0 12px;
    box-shadow: 0 2px 8px rgba(255,107,157,0.3);
}

/* 平台数据统计 */
.platform-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.stat-box {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255,107,157,0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--beauty-primary) 0%, var(--beauty-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 24px;
    color: #fff;
}

.stat-info {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: var(--beauty-primary);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: #999;
    margin-top: 5px;
}

/* 企业入驻优势 */
.merchant-benefits-section {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 25px;
}

.section-subtitle {
    text-align: center;
    color: #999;
    font-size: 14px;
    margin-top: 5px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.benefit-item {
    text-align: center;
    padding: 25px 15px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--beauty-primary) 0%, var(--beauty-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.benefit-icon i {
    font-size: 32px;
    color: #fff;
}

.benefit-item h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
    margin: 0;
}

.corner-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--beauty-primary);
    color: #fff;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 0 12px 0 12px;
    box-shadow: 0 2px 8px rgba(255,107,157,0.3);
}

/* 优质合作伙伴区域 */
.ad-rental-section {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 25px;
}

.ad-rental-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ad-slot-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ad-slot-card:hover {
    border-color: var(--beauty-primary);
    box-shadow: 0 3px 15px rgba(255,107,157,0.15);
    transform: translateY(-3px);
}

/* .ad-slot-card.available {
    border-color: var(--beauty-primary);
} */

.ad-slot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    /* background: linear-gradient(135deg, var(--beauty-primary) 0%, var(--beauty-accent) 100%); */
    color: #999;
}

.ad-position {
    font-size: 14px;
    font-weight: bold;
}

.ad-status-badge {
    font-size: 12px;
    padding: 4px 12px;
    background: rgba(255,255,255,0.3);
    border-radius: 12px;
}

/* 论坛分类 */
.forum-categories-section {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 25px;
}

.forum-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.forum-category-card {
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* ========================================
   论坛热讨板块 - 左右均衡布局
   ======================================== */

.forum-hot-discussion-section {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 25px;
}

.forum-discussion-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    align-items: stretch;
}

.discussion-left,
.discussion-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.discussion-panel {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 550px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

/* .discussion-panel:hover {
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    border-color: var(--beauty-primary);
} */

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 12px;
    /* border-bottom: 2px solid #e9ecef; */
}

.panel-header h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.panel-header h4 i {
    color: var(--beauty-primary);
    font-size: 18px;
}

.panel-more {
    color: #999;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.panel-more:hover {
    color: var(--beauty-primary);
}

/* 最新帖子列表 */
.posts-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 8px;
    min-height: 400px;
}

.posts-list::-webkit-scrollbar {
    width: 6px;
}

.posts-list::-webkit-scrollbar-track {
    background: transparent;
}

.posts-list::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.posts-list::-webkit-scrollbar-thumb:hover {
    background: var(--beauty-primary);
}

.post-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    flex-shrink: 0;
    height: 110px;
}

.post-item:hover {
    background: #fff;
    border-color: var(--beauty-primary);
    box-shadow: 0 2px 8px rgba(255,107,157,0.1);
}

.post-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--beauty-primary);
}

.post-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-info-left {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-info-left h5 {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin: 0 0 6px 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.post-info-left h5 a {
    color: #333;
    text-decoration: none;
}

.post-item:hover .post-info-left h5 a {
    color: var(--beauty-primary);
}

.post-excerpt {
    font-size: 13px;
    color: #999;
    margin: 4px 0 6px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-meta-left {
    display: flex;
    gap: 8px;
    font-size: 11px;
    color: #999;
}

.post-meta-left .author {
    max-width: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.post-stats {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-stats .stat {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.post-stats .stat i {
    color: var(--beauty-primary);
}

/* 热评弹幕列表 */
.comments-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 8px;
    min-height: 400px;
}

.comments-list::-webkit-scrollbar {
    width: 6px;
}

.comments-list::-webkit-scrollbar-track {
    background: transparent;
}

.comments-list::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.comments-list::-webkit-scrollbar-thumb:hover {
    background: var(--beauty-primary);
}

.comment-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    flex-shrink: 0;
    height: 110px;
}

.comment-item:hover {
    background: #fff;
    border-color: var(--beauty-primary);
    box-shadow: 0 2px 8px rgba(255,107,157,0.1);
}

.comment-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--beauty-secondary);
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.comment-header {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 6px;
    font-size: 13px;
}

.comment-author {
    font-weight: 500;
    color: #333;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.comment-time {
    color: #999;
    font-size: 11px;
}

.comment-text {
    font-size: 13px;
    color: #666;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.comment-post {
    font-size: 11px;
}

.comment-post a {
    color: var(--beauty-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.comment-post a:hover {
    color: var(--beauty-accent);
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .forum-discussion-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .discussion-panel {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .forum-discussion-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .discussion-panel {
        padding: 15px;
        min-height: 350px;
    }
    
    .panel-header h4 {
        font-size: 14px;
    }
    
    .post-item,
    .comment-item {
        padding: 10px;
    }
    
    .post-avatar,
    .comment-avatar {
        width: 36px;
        height: 36px;
    }
}

.forum-category-card:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.forum-category-card .category-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
}

.category-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--beauty-primary) 0%, var(--beauty-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.forum-category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-icon i {
    font-size: 28px;
    color: #fff;
}

.category-info {
    flex: 1;
    min-width: 0;
}

.category-info h5 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0 0 8px 0;
}

.forum-category-card:hover .category-info h5 {
    color: var(--beauty-primary);
}

.category-desc {
    font-size: 13px;
    color: #999;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.category-stats {
    display: flex;
    gap: 15px;
}

.category-stats .stat-item {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.category-stats .stat-item i {
    color: var(--beauty-primary);
}

/* 最新动态板块 */
.latest-updates-section {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.updates-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}


.update-thumb {
    flex-shrink: 0;
    width: 120px;
    height: 90px;
    border-radius: 6px;
    overflow: hidden;
}

.update-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.update-item:hover .update-thumb img {
    transform: scale(1.1);
}

.update-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.update-content h5 {
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.update-content h5 a {
    color: #333;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.update-content h5 a:hover {
    color: var(--beauty-primary);
}

.update-excerpt {
    font-size: 13px;
    color: #999;
    line-height: 1.5;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.update-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
    margin-top: auto;
}

.update-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.update-meta i {
    color: var(--beauty-primary);
}

/* 响应式：最新动态 */
@media (max-width: 992px) {
    .updates-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .update-item {
        flex-direction: column;
    }
    
    .update-thumb {
        width: 100%;
        height: 150px;
    }
}

/* 本周热榜板块 */
.weekly-hot-section {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 25px;
}

.weekly-hot-section .section-header {
    position: relative;
}

.hot-badge {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ff6b9d 0%, #ffa8c5 100%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hot-badge i {
    animation: fire-pulse 1.5s ease-in-out infinite;
}

@keyframes fire-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.weekly-hot-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hot-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hot-item:hover {
    background: #fff;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.hot-rank {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    background: #e0e0e0;
    color: #fff;
}

.hot-rank.rank-1 {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.hot-rank.rank-2 {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
}

.hot-rank.rank-3 {
    background: linear-gradient(135deg, #cd7f32 0%, #e8a87c 100%);
}

.hot-content {
    flex: 1;
    min-width: 0;
}

.hot-content h5 {
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hot-content h5 a {
    color: #333;
    text-decoration: none;
}

.hot-content h5 a:hover {
    color: var(--beauty-primary);
}

.hot-stats {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
}

.hot-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hot-stats i {
    color: var(--beauty-primary);
}

/* 企业入驻咨询 */
.merchant-contact-widget {
    background: linear-gradient(135deg, var(--beauty-primary) 0%, var(--beauty-accent) 100%);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 20px;
    color: #fff;
}

.merchant-contact-widget h4 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255,255,255,0.15);
    border-radius: 6px;
}

.contact-item i {
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 3px;
}

.contact-value {
    font-size: 14px;
    font-weight: bold;
}

.merchant-contact-widget .btn {
    background: #fff;
    color: var(--beauty-primary);
    margin-top: 10px;
    border: none;
    font-weight: bold;
}

.merchant-contact-widget .btn:hover {
    background: rgba(255,255,255,0.95);
    color: var(--beauty-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 成功案例 */
.success-cases-widget {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.success-cases-widget h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.success-cases-widget h4 i {
    color: #FFD700;
}

.cases-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.case-item {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.case-item:hover {
    background: #fff;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.case-logo {
    flex-shrink: 0;
}

.case-logo img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.case-info {
    flex: 1;
}

.case-info h5 {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.case-info p {
    font-size: 12px;
    color: #999;
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   全宽板块样式
   ======================================== */

/* 全宽容器 */
.full-width-section {
    width: 100%;
    padding: 60px 0;
}

/* 内容容器 - 最大宽度1400px */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 板块标题 */
.full-width-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.full-width-section .section-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.full-width-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--beauty-primary);
    border-radius: 2px;
}

.full-width-section .section-subtitle {
    font-size: 16px;
    color: #999;
    margin-top: 20px;
}

.full-width-section .more-link {
    float: right;
    color: #999;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.full-width-section .more-link:hover {
    color: var(--beauty-primary);
}

/* ========================================
   美妆教程板块
   ======================================== */

.tutorial-section-wrapper {
    background: #f5f7fa;
}

.tutorial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tutorial-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.tutorial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.tutorial-image {
    position: relative;
    overflow: hidden;
}

.tutorial-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tutorial-card:hover .tutorial-img {
    transform: scale(1.1);
}

.tutorial-info {
    padding: 20px;
}

.tutorial-info h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.4;
}

.tutorial-info h4 a {
    color: #333;
    text-decoration: none;
}

.tutorial-info h4 a:hover {
    color: var(--beauty-primary);
}

.tutorial-info p {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 15px;
}

.tutorial-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #ccc;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.meta-views i {
    color: var(--beauty-primary);
    margin-right: 5px;
}

/* ========================================
   热门品牌板块
   ======================================== */

.brands-section-wrapper {
    background: #f5f7fa;
}

.brands-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.brand-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.brand-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.brand-box img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   入驻套餐板块
   ======================================== */

.packages-section-wrapper {
    background: #f5f7fa;
}

.packages-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #f0f0f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.package-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: var(--beauty-primary);
}

.package-box.featured {
    background: linear-gradient(135deg, var(--beauty-primary) 0%, var(--beauty-accent) 100%);
    color: #fff;
    border-color: var(--beauty-primary);
    transform: scale(1.05);
}

.package-box.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #FFD700;
    color: #333;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(255,215,0,0.4);
}

.package-box .package-header h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.package-box.featured .package-header h4 {
    color: #fff;
}

.package-box .package-price {
    margin-bottom: 30px;
}

.package-box .package-price .price {
    font-size: 42px;
    font-weight: bold;
    color: var(--beauty-primary);
}

.package-box.featured .package-price .price {
    color: #fff;
}

.package-box .package-price .period {
    font-size: 16px;
    color: #999;
}

.package-box.featured .package-price .period {
    color: rgba(255,255,255,0.9);
}

.package-box .package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.package-box .package-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 15px;
    color: #555;
    font-weight: 500;
}

.package-box.featured .package-features li {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.2);
}

.package-box .package-features li i {
    margin-right: 10px;
    color: var(--beauty-primary);
}

.package-box.featured .package-features li i {
    color: #fff;
}

.package-box .package-features li.disabled {
    opacity: 0.4;
}

.package-box .btn-package {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--beauty-primary);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
}

.package-box .btn-package:hover {
    background: var(--beauty-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,107,157,0.4);
}

.package-box.featured .btn-package {
    background: #fff;
    color: var(--beauty-primary);
}

.package-box.featured .btn-package:hover {
    background: rgba(255,255,255,0.95);
}

/* ========================================
   入驻流程板块
   ======================================== */

.process-section-wrapper {
    background: #f5f7fa;
}

.process-showcase {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.process-step .step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: var(--beauty-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    z-index: 1;
    box-shadow: 0 3px 10px rgba(255,107,157,0.3);
}

.process-step .step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--beauty-secondary) 0%, var(--beauty-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255,107,157,0.2);
}

.process-step:hover .step-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 30px rgba(255,107,157,0.4);
}

.process-step .step-icon i {
    font-size: 40px;
    color: #fff;
}

.process-step h5 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: #999;
    margin: 0;
    line-height: 1.6;
}

.step-arrow {
    flex-shrink: 0;
    padding: 0 20px;
    color: #ddd;
    font-size: 28px;
}

/* ========================================
   响应式设计 - 全宽板块
   ======================================== */

@media (max-width: 1200px) {
    .tutorial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .tutorial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .packages-showcase {
        grid-template-columns: 1fr;
    }
    
    .package-box.featured {
        transform: scale(1);
    }
    
    .process-showcase {
        flex-wrap: wrap;
    }
    
    .process-step {
        flex: 0 0 50%;
        margin-bottom: 40px;
    }
    
    .step-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .full-width-section {
        padding: 40px 0;
    }
    
    .full-width-section .section-title {
        font-size: 24px;
    }
    
    .tutorial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .brands-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .process-step {
        flex: 0 0 100%;
    }
}

/* 响应式设计 - 广告位 */
@media (max-width: 992px) {
    .ad-rental-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ad-rental-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   最新动态和热门推荐 - 左右均衡布局
   ======================================== */

.updates-featured-wrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: stretch;
}

.updates-featured-left,
.updates-featured-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.latest-updates-section,
.beauty-featured-section {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 600px;
}

.latest-updates-section:hover,
.beauty-featured-section:hover {
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.updates-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-right: 8px;
}

.updates-list::-webkit-scrollbar {
    width: 6px;
}

.updates-list::-webkit-scrollbar-track {
    background: transparent;
}

.updates-list::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.updates-list::-webkit-scrollbar-thumb:hover {
    background: var(--beauty-primary);
}

.update-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    flex-shrink: 0;
}

.update-item:hover {
    background: #fff;
    border-color: var(--beauty-primary);
    box-shadow: 0 2px 8px rgba(255,107,157,0.1);
}

.update-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid var(--beauty-primary);
}

.update-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.update-thumb a {
    display: block;
    width: 100%;
    height: 100%;
}

.update-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.update-content h5 {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin: 0 0 6px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.update-content h5 a {
    color: #333;
    text-decoration: none;
}

.update-item:hover .update-content h5 a {
    color: var(--beauty-primary);
}

.update-excerpt {
    font-size: 13px;
    color: #999;
    margin: 4px 0 6px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.update-meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: #999;
}

.meta-author,
.meta-time {
    display: flex;
    align-items: center;
    gap: 4px;
}

.meta-author i,
.meta-time i {
    color: var(--beauty-primary);
}

/* 热门推荐网格 */
.beauty-grid {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-right: 8px;
}

.beauty-grid::-webkit-scrollbar {
    width: 6px;
}

.beauty-grid::-webkit-scrollbar-track {
    background: transparent;
}

.beauty-grid::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.beauty-grid::-webkit-scrollbar-thumb:hover {
    background: var(--beauty-primary);
}

.beauty-grid > [class*="col-"] {
    padding: 0;
    flex: 0 0 calc(50% - 8px);
}

.beauty-card {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.beauty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--beauty-primary);
}

.beauty-card .card-image {
    position: relative;
    overflow: hidden;
    height: 120px;
    flex-shrink: 0;
}

.beauty-card-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.beauty-card:hover .beauty-card-img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--beauty-primary);
    color: #fff;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

.beauty-card-body {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.beauty-card-body h4 {
    font-size: 13px;
    margin-bottom: 6px;
    line-height: 1.3;
    height: 26px;
    overflow: hidden;
}

.beauty-card-body h4 a {
    color: #333;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.beauty-card-body h4 a:hover {
    color: var(--beauty-primary);
}

.beauty-card-body .card-excerpt {
    font-size: 11px;
    color: #999;
    margin-bottom: 8px;
    line-height: 1.3;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 26px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #999;
    padding-top: 8px;
    border-top: 1px solid #e9ecef;
    margin-top: auto;
}

.card-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-meta .meta-item i {
    color: var(--beauty-primary);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .updates-featured-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .latest-updates-section,
    .beauty-featured-section {
        min-height: 400px;
    }
    
    .beauty-grid > [class*="col-"] {
        flex: 0 0 calc(50% - 8px);
    }
}

@media (max-width: 768px) {
    .updates-featured-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .latest-updates-section,
    .beauty-featured-section {
        padding: 15px;
        min-height: 350px;
    }
    
    .update-item {
        padding: 12px;
    }
    
    .update-thumb {
        width: 70px;
        height: 70px;
    }
    
    .beauty-grid > [class*="col-"] {
        flex: 0 0 calc(50% - 8px);
    }
}


/* 热门推荐列表样式 */
.featured-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-right: 8px;
}

.featured-list::-webkit-scrollbar {
    width: 6px;
}

.featured-list::-webkit-scrollbar-track {
    background: transparent;
}

.featured-list::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.featured-list::-webkit-scrollbar-thumb:hover {
    background: var(--beauty-primary);
}

.featured-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    flex-shrink: 0;
}

.featured-item:hover {
    background: #fff;
    border-color: var(--beauty-primary);
    box-shadow: 0 2px 8px rgba(255,107,157,0.1);
}

.featured-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid var(--beauty-primary);
    position: relative;
}

.featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-thumb a {
    display: block;
    width: 100%;
    height: 100%;
}

.featured-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--beauty-primary);
    color: #fff;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: bold;
}

.featured-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content h5 {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin: 0 0 6px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-content h5 a {
    color: #333;
    text-decoration: none;
}

.featured-item:hover .featured-content h5 a {
    color: var(--beauty-primary);
}

.featured-excerpt {
    font-size: 13px;
    color: #999;
    margin: 4px 0 6px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: #999;
}

.meta-views,
.meta-comments {
    display: flex;
    align-items: center;
    gap: 4px;
}

.meta-views i,
.meta-comments i {
    color: var(--beauty-primary);
}


/* ========================================
   企业入驻优势板块
   ======================================== */

.benefits-section-wrapper {
    background: #f5f7fa;
    padding: 60px 0;
}

.benefits-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(255,107,157,0.15);
    border-color: var(--beauty-primary);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--beauty-primary) 0%, var(--beauty-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: #fff;
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .benefits-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .benefits-showcase {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefit-item {
        padding: 20px 15px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .benefit-item h4 {
        font-size: 16px;
    }
    
    .benefit-item p {
        font-size: 13px;
    }
}


/* 精选美妆产品响应式设计 */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-tabs {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-image {
        height: 150px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-info h5 {
        font-size: 13px;
    }
    
    .product-desc {
        font-size: 11px;
    }
    
    .products-tabs {
        gap: 8px;
    }
    
    .product-tab-btn {
        padding: 6px 16px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 180px;
    }
    
    .products-tabs {
        overflow-x: auto;
        padding-bottom: 10px;
    }
}



