.jiayou-pro-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #065f46 0%, #059669 100%);
    overflow: hidden;
}

.jiayou-pro-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/57459214.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.jiayou-pro-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 95, 70, 0.8);
}

.jiayou-pro-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.jiayou-pro-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.jiayou-pro-hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.jiayou-prolist-breadcrumb-section {
    padding: 15px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.jiayou-prolist-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #6b7280;
}

.jiayou-prolist-breadcrumb a {
    color: #065f46;
    text-decoration: none;
    transition: color 0.3s ease;
}

.jiayou-prolist-breadcrumb a:hover {
    color: #10b981;
    text-decoration: underline;
}

.jiayou-prolist-breadcrumb i {
    font-size: 0.8rem;
    color: #d1d5db;
}

.jiayou-prolist-breadcrumb span:last-child {
    color: #1f2937;
    font-weight: 500;
}

.jiayou-prolist-filters {
    padding: 20px 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.jiayou-prolist-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.jiayou-prolist-category-nav {
    flex: 1;
}

.jiayou-prolist-category-list {
    display: flex;
    list-style: none;
    gap: 5px;
    flex-wrap: wrap;
}

.jiayou-prolist-category-item {
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.jiayou-prolist-category-item a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.jiayou-prolist-category-item.active {
    background: #065f46;
}

.jiayou-prolist-category-item.active a {
    color: #ffffff;
}

.jiayou-prolist-category-item:hover:not(.active) {
    background: #ecfdf5;
}

.jiayou-prolist-category-item:hover:not(.active) a {
    color: #065f46;
}

.jiayou-prolist-search {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 300px;
}

.jiayou-prolist-search:focus-within {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.jiayou-prolist-search-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    background: transparent;
    outline: none;
}

.jiayou-prolist-search-input::placeholder {
    color: #9ca3af;
}

.jiayou-prolist-search-btn {
    width: 48px;
    height: 48px;
    background: #065f46;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.jiayou-prolist-search-btn:hover {
    background: #10b981;
}

.jiayou-prolist-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
}

.jiayou-prolist-btn-primary {
    background: #10b981;
    color: #ffffff;
}

.jiayou-prolist-btn-primary:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.jiayou-prolist-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.jiayou-prolist-btn-outline:hover {
    background: #ffffff;
    color: #065f46;
    transform: translateY(-3px);
}

.jiayou-prolist-grid {
    padding: 60px 0;
    background: #f8fafc;
}

.jiayou-prolist-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.jiayou-prolist-product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.jiayou-prolist-product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.jiayou-prolist-product-card:hover .jiayou-prolist-product-image img {
    transform: scale(1.1);
}

.jiayou-prolist-product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    background: #10b981;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    z-index: 2;
}

.jiayou-prolist-product-badge:nth-child(2):not(:only-child) {
    background: #ef4444;
}

.jiayou-prolist-product-badge:nth-child(3) {
    background: #f59e0b;
    left: auto;
    right: 15px;
}

.jiayou-prolist-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 95, 70, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.jiayou-prolist-product-card:hover .jiayou-prolist-product-overlay {
    opacity: 1;
}

.jiayou-prolist-product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.jiayou-prolist-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 25px;
    background: #ffffff;
    color: #065f46;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.jiayou-prolist-action-btn:hover {
    background: #10b981;
    color: #ffffff;
    transform: translateX(5px);
}

.jiayou-prolist-product-info {
    padding: 25px;
}

.jiayou-prolist-product-category {
    display: inline-block;
    padding: 4px 12px;
    background: #d1fae5;
    color: #065f46;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 15px;
    margin-bottom: 12px;
}

.jiayou-prolist-product-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #065f46;
    margin-bottom: 12px;
    line-height: 1.4;
}

.jiayou-prolist-product-description {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.jiayou-prolist-product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.jiayou-prolist-spec-item {
    font-size: 0.85rem;
    color: #9ca3af;
    padding: 5px 10px;
    background: #f3f4f6;
    border-radius: 6px;
}

.jiayou-prolist-product-price-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #f3f4f6;
}

.jiayou-prolist-view-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    background: #065f46;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    width: 100%;
    transition: all 0.3s ease;
}

.jiayou-prolist-view-more:hover {
    background: #10b981;
    transform: translateX(5px);
}

.jiayou-prolist-view-more i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.jiayou-prolist-view-more:hover i {
    transform: translateX(3px);
}

.jiayou-prolist-pagination {
    text-align: center;
}

.jiayou-prolist-pagination-list {
    display: inline-flex;
    list-style: none;
    gap: 8px;
}

.jiayou-prolist-pagination-item {
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.jiayou-prolist-pagination-item a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.jiayou-prolist-pagination-item.active {
    background: #065f46;
}

.jiayou-prolist-pagination-item.active a {
    color: #ffffff;
}

.jiayou-prolist-pagination-item:hover:not(.active) {
    background: #ecfdf5;
}

.jiayou-prolist-pagination-item:hover:not(.active) a {
    color: #065f46;
}

.jiayou-prolist-pagination-item.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.jiayou-prolist-contact {
    padding: 60px 0;
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
}

.jiayou-prolist-contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.jiayou-prolist-contact-text {
    flex: 1;
    color: #ffffff;
}

.jiayou-prolist-contact-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.jiayou-prolist-contact-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

.jiayou-prolist-contact-buttons {
    display: flex;
    gap: 15px;
}

.jiayou-prolist-contact-buttons .jiayou-prolist-btn-outline {
    color: #ffffff;
    border-color: #ffffff;
}

.jiayou-prolist-contact-buttons .jiayou-prolist-btn-outline:hover {
    background: #ffffff;
    color: #065f46;
}

.jiayou-prolist-product-card.hidden {
    display: none;
}

@media (max-width: 1024px) {
    .jiayou-prolist-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .jiayou-prolist-contact-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .jiayou-prolist-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .jiayou-prolist-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .jiayou-prolist-category-list {
        justify-content: center;
    }
    
    .jiayou-prolist-search {
        width: 100%;
    }
    
    .jiayou-prolist-product-image {
        height: 180px;
    }
    
    .jiayou-prolist-contact-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .jiayou-prolist-contact-buttons .jiayou-prolist-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .jiayou-prolist-product-grid {
        grid-template-columns: 1fr;
    }
    
    .jiayou-prolist-product-info {
        padding: 20px;
    }
    
    .jiayou-prolist-product-price-row {
        flex-direction: column;
        gap: 15px;
    }
}
