.woodmart-product-category-card {
    background-color: #fff;
    border: 1px solid var(--pc-border-color, #e5e7eb);
    border-radius: var(--pc-border-radius, 12px);
    padding: 16px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
    max-width: 380px;
    text-align: center;
}

.woodmart-product-category-title {
    font-size: var(--pc-title-size, 1.375rem);
    font-weight: 700;
color: var(--wd-entities-title-color);
}

.woodmart-product-category-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.woodmart-product-category-badges {
    display: flex;
    gap: 16px;
    margin-top: 6px;
    margin-bottom: 12px;
    justify-content: center;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    color: #374151;
    font-size: 0.95rem;
}

.badge-icon {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    color: #111827;
}

.woodmart-product-category-image img {
    width: var(--pc-image-width, 100%);
    height: var(--pc-image-height, auto);
    border-radius: 5px;
    display: block;
    object-fit: cover;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .woodmart-product-category-card { padding: 14px; }
    .woodmart-product-category-title { font-size: 1.25rem; }
    .badge-item { font-size: 0.9rem; }
}
