.pg-wrapper-ee220bc1 {
    width: 100%;
}
.pg-filters-ee220bc1 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}
.pg-filter-btn-ee220bc1 {
    background: transparent;
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}
.pg-filter-btn-ee220bc1:hover, .pg-filter-btn-ee220bc1.active {
    background: #023a1c;
    color: #fff;
    border-color: #023a1c;
}
.pg-grid-ee220bc1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: opacity 0.3s ease;
}
.pg-grid-ee220bc1.loading {
    opacity: 0.5;
    pointer-events: none;
}
.pg-card-ee220bc1 {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border 0.3s ease;
}

.pg-img-wrap-ee220bc1 {
    position: relative;
    background: #fdfaf6;
    overflow: hidden;
}
.pg-img-wrap-ee220bc1 img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1/1;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.pg-wrapper-ee220bc1.img-zoom-ee220bc1 .pg-card-ee220bc1:hover .pg-img-wrap-ee220bc1 img {
    transform: scale(1.08);
}
.pg-cat-ee220bc1 {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.9);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    color: #333;
}
.pg-content-ee220bc1 {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.pg-title-ee220bc1 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}
.pg-desc-ee220bc1 {
    margin: 0 0 15px;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}
.pg-price-ee220bc1 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}
.pg-add-ee220bc1 {
    display: block;
    width: 100%;
    background: #023a1c;
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    position: relative;
    z-index: 3;
}
.pg-add-ee220bc1:hover {
    background: #012411;
    color: #fff;
}
.pg-pagination-ee220bc1 {
    text-align: center;
    margin-top: 40px;
}
.pg-load-more-ee220bc1 {
    background: #fdfaf6;
    border: 1px solid #ddd;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s;
}
.pg-load-more-ee220bc1:hover {
    background: #eaeaea;
}

@media (max-width: 768px) {
    .pg-grid-ee220bc1 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 480px) {
    .pg-grid-ee220bc1 {
        grid-template-columns: 1fr !important;
    }
}