.aiz-main-wrapper{
    background-color: #fff !important;
}

/* 顶部导航栏 */
.top-navbar .container {
    padding-left: 30px;
    padding-right: 30px;
}

/* Banner */
.nh-banner-wrap {
    margin: 10px auto;
}
.nh-banner-row {
    display: flex;
    height: 340px;
    gap: 4px;
}
.nh-banner-left {
    width: 60%;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #eee;
}
.nh-banner-right {
    width: 40%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
}
@media (max-width: 767.98px) {
    .nh-banner-right {
        display: none;
    }
    .nh-banner-left {
        width: 100%;
    }
}
.nh-banner-right-item {
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #eee;
}
.nh-banner-left .swiper-pagination-bullet-active { background: #f89900; }

/* Category Bar */
.nh-category-wrap {
    background: #fff;
    padding: 14px 0;
    margin: 10px auto;
}
.nh-category-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 12px 0;
}
.nh-category-title h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #333;
}
.nh-category-title a {
    font-size: 14px;
    color: #999;
    text-decoration: none;
}
.nh-category-swiper .swiper-wrapper {
    display: flex;
    flex-direction: row;
}
.nh-category-swiper .swiper-slide {
    width: auto;
    flex-shrink: 0;
}
.nh-category-item {
    display: block;
    width: 109px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}
.nh-category-item-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 6px;
    background: #f5f5f5;
    overflow: hidden;
}
.nh-category-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nh-category-item-name {
    font-size: 13px;
    color: #333;
    line-height: 1.3;
}

/* Promo Banner */
.nh-promo-wrap {
    margin: 10px auto;
    padding: 10px 0;
}
.nh-promo-inner {
    height: 352px;
    background: #1a1a2e url('https://shop-20260710.oss-cn-hongkong.aliyuncs.com/assets/promo_banner_bg.png') no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
}
.nh-promo-content {
    margin-left: auto;
    padding-right: 80px;
    text-align: right;
    color: #fff;
}
.nh-promo-content p {
    margin: 0 0 6px 0;
    font-size: 22px;
    opacity: 0.9;
}
.nh-promo-content h3 {
    margin: 10px 0 20px 0;
    font-size: 48px;
    font-weight: 700;
}
.nh-promo-content .nh-promo-btn {
    display: inline-block;
    padding: 10px 36px;
    border: 1px solid #fff;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
}

/* Popular Items */
.nh-products-wrap {
    background: #fff;
    padding: 20px 0;
    margin: 10px auto;
}
.nh-products-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    padding-left: 14px;
    position: relative;
}
.nh-products-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 2px;
    background: #f89900;
}
.nh-products-wrap .aiz-card-box {
    border-color: #ddd !important;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.nh-products-wrap .aiz-card-box:hover {
    transform: scale(1.04);
    border-color: #f89900 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* Popular Stores */
.nh-stores-wrap {
    background: #fff;
    padding: 20px 0;
    margin: 10px auto;
}
.nh-stores-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.nh-stores-title h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0;
    padding-left: 14px;
    position: relative;
}
.nh-stores-title h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 2px;
    background: #f89900;
}
.nh-stores-title a {
    font-size: 14px;
    color: #999;
}
.nh-store-card {
    display: block;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    text-decoration: none !important;
    transition: transform 0.3s, box-shadow 0.3s;
}
.nh-store-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.nh-store-card-img {
    width: 72px;
    height: 72px;
    margin: 0 auto 10px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
}
.nh-store-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nh-store-card-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 38px;
}
.nh-store-card-info {
    font-size: 12px;
    color: #999;
}
.nh-store-card-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 20px;
    border: 1px solid #f89900;
    border-radius: 4px;
    color: #f89900;
    font-size: 12px;
}
