/* ============================================
   Brand Store Page Styles
   设计系统配色和字体与首页保持一致
   ============================================ */

/* ===== CSS Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #362222;
    background-color: #FFFFFF;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ===== Container ===== */
.zh_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===== Store Header ===== */
.zh_store-header {
    background: linear-gradient(135deg, #362222 0%, #4a2f2f 100%);
    color: #FFFFFF;
    padding: 40px 0;
    margin-bottom: 60px;
}

.zh_store-header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 50px;
    align-items: center;
}

/* Store Logo Section */
.zh_store-logo-section {
    display: flex;
    align-items: center;
    gap: 25px;
}

.zh_store-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #BF9271;
    flex-shrink: 0;
    background: #FFFFFF;
}

.zh_store-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zh_store-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zh_store-name {
    font-family: 'Mulish', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
}

.zh_store-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(191, 146, 113, 0.2);
    border: 2px solid #BF9271;
    border-radius: 25px;
    color: #BF9271;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: fit-content;
}

.zh_store-contact:hover {
    background: #BF9271;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.zh_store-contact i {
    font-size: 18px;
}

/* Store Ratings */
.zh_store-ratings {
    display: flex;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.zh_rating-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.zh_rating-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.zh_rating-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #BF9271 0%, #E3B7A0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #FFFFFF;
    flex-shrink: 0;
}

.zh_rating-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.zh_rating-label {
    font-size: 14px;
    color: #E3B7A0;
    font-weight: 500;
}

.zh_rating-value {
    font-family: 'Mulish', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
}

.zh_rating-unit {
    font-size: 16px;
    font-weight: 500;
    margin-left: 4px;
}

/* Store Search */
.zh_store-search {
    width: 350px;
}

.zh_search-form {
    position: relative;
    display: flex;
}

.zh_search-input {
    width: 100%;
    padding: 15px 55px 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.zh_search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.zh_search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    border-color: #BF9271;
}

.zh_search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #BF9271 0%, #E3B7A0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 18px;
    transition: all 0.3s ease;
}

.zh_search-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(191, 146, 113, 0.4);
}

/* ===== Store Layout ===== */
.zh_store-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

/* ===== Sidebar ===== */
.zh_store-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.zh_sidebar-widget {
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid #EEEEEE;
}

.zh_widget-header {
    background: linear-gradient(135deg, #362222 0%, #4a2f2f 100%);
    padding: 20px 25px;
}

.zh_widget-title {
    font-family: 'Mulish', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.zh_widget-body {
    padding: 25px;
}

/* Store Stars */
.zh_store-stars {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #EEEEEE;
}

.zh_stars-label {
    font-size: 16px;
    font-weight: 600;
    color: #362222;
    margin-bottom: 12px;
}

.zh_stars-display {
    position: relative;
}

.zh_stars-bg {
    width: 100%;
    height: 30px;
    background: #EEEEEE;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.zh_stars-fill {
    height: 100%;
    background: linear-gradient(90deg, #FAAD14 0%, #FFD700 100%);
    border-radius: 15px;
    transition: width 0.6s ease;
    position: relative;
}

.zh_stars-fill::after {
    content: '★★★★★';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-size: 14px;
    letter-spacing: 2px;
}

/* Store Scores */
.zh_store-scores {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.zh_score-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #F7F7F7;
    border-radius: 10px;
}

.zh_score-label {
    font-size: 16px;
    color: #666666;
    font-weight: 500;
}

.zh_score-value {
    font-family: 'Mulish', sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.zh_score-red {
    color: #DA3E31;
}

.zh_score-green {
    color: #52C41A;
}

/* Company Info */
.zh_company-info {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #EEEEEE;
}

.zh_company-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Mulish', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #362222;
    margin-bottom: 20px;
    padding: 12px 15px;
    background: linear-gradient(135deg, #F7F7F7 0%, #EEEEEE 100%);
    border-radius: 10px;
}

.zh_company-title i {
    color: #BF9271;
    font-size: 20px;
}

.zh_company-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    margin-bottom: 12px;
    background: #FAFAFA;
    border-radius: 10px;
    border-left: 3px solid #BF9271;
    transition: all 0.3s ease;
}

.zh_company-item:hover {
    background: #F5F5F5;
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.zh_company-item:last-child {
    margin-bottom: 0;
}

.zh_company-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #BF9271 0%, #E3B7A0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.zh_company-icon i {
    color: #FFFFFF;
    font-size: 18px;
}

.zh_company-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.zh_company-label {
    font-size: 13px;
    color: #999999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zh_company-text {
    font-size: 15px;
    color: #362222;
    font-weight: 500;
    line-height: 1.5;
    word-break: break-word;
}

.zh_phone-link {
    color: #BF9271;
    text-decoration: none;
    transition: color 0.3s ease;
}

.zh_phone-link:hover {
    color: #DA3E31;
    text-decoration: underline;
}

/* Brand Description */
.zh_brand-description {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #EEEEEE;
}

.zh_desc-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Mulish', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #362222;
    margin-bottom: 15px;
    padding: 12px 15px;
    background: linear-gradient(135deg, #F7F7F7 0%, #EEEEEE 100%);
    border-radius: 10px;
}

.zh_desc-title i {
    color: #52C41A;
    font-size: 20px;
}

.zh_desc-content {
    font-size: 15px;
    line-height: 1.8;
    color: #666666;
    padding: 15px;
    background: #FAFAFA;
    border-radius: 10px;
    border: 1px solid #EEEEEE;
}

/* Recommend List */
.zh_recommend-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.zh_recommend-item {
    transition: transform 0.3s ease;
}

.zh_recommend-item:hover {
    transform: translateX(5px);
}

.zh_recommend-link {
    display: flex;
    gap: 15px;
    padding: 12px;
    border-radius: 10px;
    background: #F7F7F7;
    transition: all 0.3s ease;
}

.zh_recommend-link:hover {
    background: #BF9271;
}

.zh_recommend-link:hover .zh_recommend-name {
    color: #FFFFFF;
}

.zh_recommend-link:hover .zh_recommend-price {
    color: #FFFFFF;
}

.zh_recommend-image {
    width: 85px;
    height: 85px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #FFFFFF;
}

.zh_recommend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zh_recommend-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.zh_recommend-name {
    font-size: 15px;
    font-weight: 500;
    color: #362222;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.zh_recommend-price {
    font-family: 'Mulish', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #DA3E31;
    transition: color 0.3s ease;
}

/* ===== Main Content ===== */
.zh_store-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Products Wrapper */
.zh_products-wrapper {
    min-height: 500px;
}

/* Products Grid View */
.zh_products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.zh_product-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.zh_product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: #BF9271;
}

.zh_product-link {
    display: block;
}

.zh_product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: #F7F7F7;
}

.zh_product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zh_product-card:hover .zh_product-image {
    transform: scale(1.1);
}

.zh_product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(54, 34, 34, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.zh_product-card:hover .zh_product-overlay {
    opacity: 1;
}

.zh_overlay-actions {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.zh_product-card:hover .zh_overlay-actions {
    transform: translateY(0);
}

.zh_action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #BF9271 0%, #E3B7A0 100%);
    color: #FFFFFF;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.zh_action-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(191, 146, 113, 0.4);
}

.zh_action-btn i {
    font-size: 18px;
}

.zh_product-info {
    padding: 20px;
}

.zh_product-name {
    font-size: 18px;
    font-weight: 600;
    color: #362222;
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 50px;
}

.zh_product-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.zh_price-current {
    font-family: 'Mulish', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #DA3E31;
}

/* Products List View */
.zh_products-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.zh_list-product {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.zh_list-product:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #BF9271;
}

.zh_list-product-link {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px;
}

.zh_list-image {
    width: 280px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #F7F7F7;
}

.zh_list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.zh_list-product:hover .zh_list-image img {
    transform: scale(1.05);
}

.zh_list-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.zh_list-name {
    font-family: 'Mulish', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #362222;
    margin: 0;
    line-height: 1.3;
}

.zh_list-price {
    margin: 10px 0;
}

.zh_list-actions {
    margin-top: 10px;
}

.zh_list-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #BF9271 0%, #E3B7A0 100%);
    color: #FFFFFF;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.zh_list-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(191, 146, 113, 0.4);
}

.zh_list-btn i {
    font-size: 18px;
}

/* Products Text View */
.zh_products-text {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.zh_text-product {
    padding: 15px 0;
    border-bottom: 1px solid #EEEEEE;
}

.zh_text-product:last-child {
    border-bottom: none;
}

.zh_text-product-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.zh_text-product-link:hover {
    background: #F7F7F7;
}

.zh_text-name {
    font-size: 18px;
    font-weight: 500;
    color: #362222;
    flex: 1;
}

.zh_text-price {
    font-family: 'Mulish', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #DA3E31;
}

/* ===== Pagination ===== */
.zh_pagination-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

/* 分页列表 */
.zh_pagination-wrapper ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

/* 分页项 */
.zh_pagination-wrapper li {
    margin: 0;
    padding: 0;
}

/* 分页链接 */
.zh_pagination-wrapper a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: #FFFFFF;
    border: 2px solid #EEEEEE;
    border-radius: 10px;
    color: #362222;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Mulish', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* 分页链接悬停效果 */
.zh_pagination-wrapper a:hover {
    background: #BF9271;
    border-color: #BF9271;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(191, 146, 113, 0.3);
}

/* 当前页（无href的a标签或active类） */
.zh_pagination-wrapper li.active a,
.zh_pagination-wrapper a:not([href]) {
    background: linear-gradient(135deg, #BF9271 0%, #E3B7A0 100%);
    border-color: #BF9271;
    color: #FFFFFF;
    cursor: default;
    box-shadow: 0 4px 12px rgba(191, 146, 113, 0.25);
}

/* 当前页不响应悬停 */
.zh_pagination-wrapper li.active a:hover,
.zh_pagination-wrapper a:not([href]):hover {
    transform: none;
}

/* 上一页/下一页 */
.zh_pagination-wrapper li.prev a,
.zh_pagination-wrapper li.next a {
    padding: 0 20px;
    background: #F7F7F7;
    border-color: #E0E0E0;
    font-weight: 500;
}

.zh_pagination-wrapper li.prev a:hover,
.zh_pagination-wrapper li.next a:hover {
    background: #362222;
    border-color: #362222;
    color: #FFFFFF;
}

/* 禁用状态 */
.zh_pagination-wrapper li.disabled a {
    background: #F7F7F7;
    border-color: #EEEEEE;
    color: #CCCCCC;
    cursor: not-allowed;
    pointer-events: none;
}

/* 省略号 */
.zh_pagination-wrapper li.dots {
    color: #666666;
    font-size: 18px;
    font-weight: 700;
    padding: 0 5px;
}

/* ===== Responsive Design ===== */

/* Large Desktop: 1200px */
@media (max-width: 1200px) {
    .zh_container {
        max-width: 1100px;
        padding: 0 25px;
    }

    .zh_store-header-content {
        gap: 35px;
    }

    .zh_store-ratings {
        gap: 25px;
    }

    .zh_rating-item {
        padding: 15px 20px;
    }

    .zh_store-search {
        width: 300px;
    }

    .zh_store-layout {
        grid-template-columns: 280px 1fr;
        gap: 30px;
    }

    .zh_products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Tablet: 992px */
@media (max-width: 992px) {
    .zh_container {
        padding: 0 20px;
    }

    .zh_store-header {
        padding: 30px 0;
    }

    .zh_store-header-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .zh_store-logo-section {
        flex-direction: column;
        align-items: center;
    }

    .zh_store-info {
        align-items: center;
    }

    .zh_store-ratings {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .zh_rating-item {
        flex: 1;
        min-width: 200px;
    }

    .zh_store-search {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .zh_store-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .zh_store-sidebar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .zh_products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zh_list-product-link {
        gap: 20px;
    }

    .zh_list-image {
        width: 200px;
        height: 200px;
    }

    .zh_list-name {
        font-size: 20px;
    }
}

/* Mobile: 768px */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .zh_container {
        padding: 0 15px;
    }

    .zh_store-header {
        padding: 25px 0;
        margin-bottom: 40px;
    }

    .zh_store-logo {
        width: 80px;
        height: 80px;
    }

    .zh_store-name {
        font-size: 24px;
    }

    .zh_store-contact {
        font-size: 14px;
        padding: 6px 16px;
    }

    .zh_store-ratings {
        flex-direction: column;
        gap: 12px;
    }

    .zh_rating-item {
        width: 100%;
        min-width: auto;
    }

    .zh_rating-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .zh_rating-value {
        font-size: 24px;
    }

    .zh_store-layout {
        gap: 30px;
    }

    .zh_store-sidebar {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .zh_widget-header {
        padding: 15px 20px;
    }

    .zh_widget-title {
        font-size: 18px;
    }

    .zh_widget-body {
        padding: 20px;
    }

    /* 公司信息响应式 */
    .zh_company-title {
        font-size: 16px;
        padding: 10px 12px;
    }

    .zh_company-title i {
        font-size: 18px;
    }

    .zh_company-item {
        padding: 12px;
        gap: 12px;
    }

    .zh_company-icon {
        width: 36px;
        height: 36px;
    }

    .zh_company-icon i {
        font-size: 16px;
    }

    .zh_company-label {
        font-size: 12px;
    }

    .zh_company-text {
        font-size: 14px;
    }

    .zh_desc-title {
        font-size: 16px;
        padding: 10px 12px;
    }

    .zh_desc-title i {
        font-size: 18px;
    }

    .zh_desc-content {
        font-size: 14px;
        padding: 12px;
    }

    .zh_products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .zh_product-name {
        font-size: 16px;
        min-height: auto;
    }

    .zh_price-current {
        font-size: 20px;
    }

    .zh_list-product-link {
        flex-direction: column;
        gap: 15px;
    }

    .zh_list-image {
        width: 100%;
        height: auto;
        padding-top: 100%;
        position: relative;
    }

    .zh_list-image img {
        position: absolute;
        top: 0;
        left: 0;
    }

    .zh_list-name {
        font-size: 18px;
    }

    .zh_list-actions {
        width: 100%;
    }

    .zh_list-btn {
        width: 100%;
        justify-content: center;
    }

    /* 分页移动端 */
    .zh_pagination-wrapper {
        padding: 30px 0;
    }

    .zh_pagination-wrapper ul {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .zh_pagination-wrapper a {
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        font-size: 14px;
    }

    .zh_pagination-wrapper li.prev a,
    .zh_pagination-wrapper li.next a {
        padding: 0 15px;
    }
}

/* Small Mobile: 480px */
@media (max-width: 480px) {
    .zh_store-name {
        font-size: 20px;
    }

    .zh_rating-label {
        font-size: 12px;
    }

    .zh_rating-value {
        font-size: 20px;
    }

    .zh_search-input {
        padding: 12px 50px 12px 15px;
        font-size: 14px;
    }

    .zh_search-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .zh_widget-title {
        font-size: 16px;
    }

    .zh_widget-body {
        padding: 15px;
    }

    .zh_recommend-image {
        width: 70px;
        height: 70px;
    }

    .zh_recommend-name {
        font-size: 14px;
    }

    .zh_recommend-price {
        font-size: 16px;
    }

    /* 公司信息小屏幕 */
    .zh_company-title {
        font-size: 15px;
        padding: 8px 10px;
    }

    .zh_company-title i {
        font-size: 16px;
    }

    .zh_company-item {
        padding: 10px;
        gap: 10px;
    }

    .zh_company-icon {
        width: 32px;
        height: 32px;
    }

    .zh_company-icon i {
        font-size: 14px;
    }

    .zh_company-label {
        font-size: 11px;
    }

    .zh_company-text {
        font-size: 13px;
    }

    .zh_desc-title {
        font-size: 15px;
        padding: 8px 10px;
    }

    .zh_desc-title i {
        font-size: 16px;
    }

    .zh_desc-content {
        font-size: 13px;
        padding: 10px;
        line-height: 1.6;
    }

    .zh_action-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .zh_list-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    /* 分页小屏幕 */
    .zh_pagination-wrapper {
        padding: 25px 0;
    }

    .zh_pagination-wrapper ul {
        gap: 6px;
    }

    .zh_pagination-wrapper a {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 13px;
        border-radius: 8px;
    }

    .zh_pagination-wrapper li.prev a,
    .zh_pagination-wrapper li.next a {
        padding: 0 12px;
        font-size: 12px;
    }
}
