.wpc-infinite-container {
    width: 100%;
    padding: 0;
}

.wpc-products-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.wpc-product-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.wpc-product-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wpc-product-link {
    text-decoration: none;
    display: block;
}

.wpc-product-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    display: block;
    background: #f5f5f5;
    padding: 10px;
    box-sizing: border-box;
}

.wpc-product-info {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.wpc-product-name {
    font-weight: 600;
    font-size: 14px;
    margin: 0 0 10px 0;
    min-height: 40px;
    display: flex;
    align-items: center;
    color: #333;
}

.wpc-product-name a {
    color: #333;
    text-decoration: none;
}

.wpc-product-name a:hover {
    color: #000;
}

.wpc-product-price {
    font-size: 16px;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 15px;
}

.wpc-product-button {
    margin-top: auto;
}

.wpc-product-button a,
.wpc-product-button button,
.wpc-product-button input {
    width: 100%;
    padding: 10px;
    background: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: background 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.wpc-product-button a:hover,
.wpc-product-button button:hover,
.wpc-product-button input:hover {
    background: #555;
}

.wpc-loading {
    text-align: center;
    padding: 20px;
    display: none;
}

.wpc-loading.active {
    display: block;
}

.wpc-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #333;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: wpc-spin 1s linear infinite;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes wpc-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.wpc-no-more {
    text-align: center;
    padding: 20px;
    color: #999;
    display: none;
}

.wpc-no-more.active {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .wpc-products-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .wpc-product-image {
        height: 180px;
    }

    .wpc-product-info {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .wpc-products-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }

    .wpc-product-image {
        height: 130px;
    }

    .wpc-product-name {
        font-size: 12px;
        min-height: 30px;
    }

    .wpc-product-price {
        font-size: 14px;
    }
}