.z-prod-container {
    width: 100%;
}

.z-prod-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: flex-end;
}

.z-filter-select, .z-sort-select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    color: #333;
    min-width: 200px;
}

.z-prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.z-prod-item {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.z-prod-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.z-prod-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding-bottom: 20px;
}

.z-prod-link:hover {
    color: inherit;
}

.z-prod-img-wrap {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f9f9f9;
}

.z-prod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.z-prod-title {
    margin: 15px 15px 5px;
    font-size: 1.2rem;
    font-weight: 600;
}

.z-prod-price {
    margin: 0 15px;
    font-weight: 700;
    color: #000;
}

.z-prod-loading {
    text-align: center;
    padding: 40px;
    font-size: 1.2rem;
    color: #666;
}

.z-prod-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 8px;
    color: #666;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .z-prod-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .z-prod-grid {
        grid-template-columns: 1fr;
    }
    .z-prod-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .z-filter-select, .z-sort-select {
        width: 100%;
    }
}