.wpg-13549-header-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 15px;
}

.wpg-13549-cat-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 0;
}

.wpg-13549-cat-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.wpg-13549-cat-links a:hover,
.wpg-13549-cat-links a.active {
    color: #000;
    border-bottom-color: #000;
}

.wpg-13549-ordering {
    margin: 0;
}

.wpg-13549-ordering select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    min-width: 200px;
}

.wpg-13549-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.wpg-13549-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.wpg-13549-image-wrap {
    position: relative;
    overflow: hidden;
}

.wpg-13549-main-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.wpg-13549-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wpg-13549-badge {
    padding: 3px 8px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    border-radius: 4px;
}

.wpg-13549-badge.sale { background: #ff4757; }
.wpg-13549-badge.best { background: #2ed573; }

.wpg-13549-quick-view {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.9);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.wpg-13549-image-wrap:hover .wpg-13549-quick-view {
    opacity: 1;
    transform: translateY(0);
}

.wpg-13549-gallery {
    display: flex;
    gap: 5px;
    padding: 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

.wpg-13549-gallery::-webkit-scrollbar {
    display: none;
}

.wpg-13549-thumb {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
}

.wpg-13549-thumb.active {
    border-color: #333;
}

.wpg-13549-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wpg-13549-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.wpg-13549-cat {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}

.wpg-13549-cat a {
    color: inherit;
    text-decoration: none;
}

.wpg-13549-title {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
}

.wpg-13549-title a {
    color: #333;
    text-decoration: none;
}

.wpg-13549-price {
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    margin-top: auto;
}

.wpg-13549-price del {
    color: #999;
    font-weight: normal;
    font-size: 0.9em;
    margin-right: 5px;
}

.wpg-13549-price ins {
    text-decoration: none;
    color: #ff4757;
}

.wpg-13549-add-to-cart .button {
    width: 100%;
    text-align: center;
    background: #f1f2f6;
    color: #333;
    padding: 10px;
    border-radius: 4px;
    transition: background 0.3s;
}

.wpg-13549-add-to-cart .button:hover {
    background: #dfe4ea;
}

.wpg-13549-pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.wpg-13549-pagination a,
.wpg-13549-pagination span {
    padding: 8px 15px;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
}

.wpg-13549-pagination .current {
    background: #333;
    color: #fff;
    border-color: #333;
}