.stilovero-productlist-wrapper {
    margin: 0px auto;
    padding: 0px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
}

.stilovero-productlist-title {
    color: #BB5644;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    text-align: center;
}

.stilovero-productlist-container {
    display: grid;
    gap: 40px;
    justify-content: center;
}

/* PC端样式 - 每行4个 */
.stilovero-product-item {
    background: #f7f0ea;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stilovero-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.stilovero-product-image {
}

.stilovero-product-image img {
    width: 385px;
    height: 385px;
    object-fit: cover;
}

.stilovero-product-info {
    padding: 0 5px;
    margin-bottom: 30px;;
}

.stilovero-product-name {
    font-size: 18px;
    font-weight: 500;
    color: #4e4540;
    margin: 0;
    line-height: 1.3;
}

.stilovero-product-nature {
    color: #BB5644;
    font-size: 14px;
    margin-top: 8px;
}

.stilovero-product-price {
    font-size: 18px;
    font-weight: 500;
    color: #4e4540;
    margin: 8px 0;
}

.stilovero-product-link {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
}

.stilovero-product-link:hover {
    background: #2980b9;
}

.stilovero-no-products {
    text-align: center;
    color: #666;
    font-size: 16px;
    padding: 40px;
    grid-column: 1 / -1;
}

/* View More 按钮样式 */
.stilovero-viewmore {
    margin-top: 50px;
    text-align: center;
}

.stilovero-viewmore-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #BB5644;
}

.stilovero-viewmore-button:hover {
    background: #BB5644;
    color: #fff;
}

.stilovero-listwrap {
    width: 100%;
    height: 100px;
    text-align: center;
}
/* PC端布局 - 每行4个 */
@media (min-width: 1025px) {
    .stilovero-productlist-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 平板端布局 - 每行2个 */
@media (min-width: 769px) and (max-width: 1024px) {
    .stilovero-productlist-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stilovero-product-image img {
        width: 100%;
        height: 300px;
    }
    
    .stilovero-productlist-title {
        font-size: 32px;
    }
    
    .stilovero-viewmore {
        margin-top: 30px;
    }
    .stilovero-listwrap {
        height: 50px;
    }
}

/* 手机端布局 - 每行2个 */
@media (max-width: 768px) {
    .stilovero-productlist-wrapper {
        padding: 15px;
    }
    
    .stilovero-productlist-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .stilovero-productlist-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stilovero-product-item {
        padding: 10px;
    }
    
    .stilovero-product-image img {
        width: 100%;
        height: 150px;
    }
    
    .stilovero-product-name {
        font-size: 14px;
    }
    
    .stilovero-product-price {
        font-size: 16px;
    }
    
    .stilovero-viewmore-button {
        padding: 10px 25px;
        font-size: 14px;
    }

    .stilovero-viewmore {
        margin-top: 30px;
    }
    .stilovero-listwrap {
        height: 50px;
    }
}

/* 超小屏幕适配 */
@media (max-width: 480px) {
    .stilovero-productlist-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stilovero-product-image img {
        height: 120px;
    }
    
    .stilovero-product-name {
        font-size: 12px;
    }
    
    .stilovero-product-nature {
        font-size: 11px;
    }
    
    .stilovero-product-price {
        font-size: 14px;
    }
}