.wpg-c7f7baa2-grid {
    display: grid;
    gap: 20px;
    width: 100%;
}
.wpg-c7f7baa2-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.wpg-c7f7baa2-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.wpg-c7f7baa2-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}
.wpg-c7f7baa2-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.3s ease;
}
.wpg-c7f7baa2-card:hover .wpg-c7f7baa2-main-img {
    transform: scale(1.05);
}
.wpg-c7f7baa2-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #000;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 8px;
    text-transform: uppercase;
    z-index: 2;
    border-radius: 2px;
}
.wpg-c7f7baa2-badge.sale {
    background: #e74c3c;
}
.wpg-c7f7baa2-quickview {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(255,255,255,0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.wpg-c7f7baa2-card:hover .wpg-c7f7baa2-quickview {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}
.wpg-c7f7baa2-gallery {
    display: flex;
    gap: 5px;
    padding: 10px;
    overflow-x: auto;
    scrollbar-width: none;
}
.wpg-c7f7baa2-gallery::-webkit-scrollbar {
    display: none;
}
.wpg-c7f7baa2-thumb {
    width: 40px;
    height: 50px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid transparent;
    transition: border-color 0.2s;
    flex-shrink: 0;
}
.wpg-c7f7baa2-thumb.active {
    border-color: #000;
}
.wpg-c7f7baa2-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.wpg-c7f7baa2-cat {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.wpg-c7f7baa2-cat a {
    color: inherit;
    text-decoration: none;
}
.wpg-c7f7baa2-title {
    font-size: 16px;
    margin: 0 0 10px 0;
    line-height: 1.3;
}
.wpg-c7f7baa2-title a {
    color: #333;
    text-decoration: none;
}
.wpg-c7f7baa2-price {
    font-size: 15px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
    margin-top: auto;
}
.wpg-c7f7baa2-price del {
    color: #999;
    font-weight: normal;
    font-size: 13px;
    margin-right: 5px;
}
.wpg-c7f7baa2-add-to-cart {
    display: block;
    text-align: center;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 2px;
    transition: opacity 0.3s;
}
.wpg-c7f7baa2-add-to-cart:hover {
    opacity: 0.8;
}
